27724a809f0a766f8335bad9db72935a5d3478c6,apps/BOB/src/net/i2p/BOB/DoCMDS.java,DoCMDS,tfpnt,#PrintStream#NamedDB#Object#,249
Before Change
*/
private void tfpnt(PrintStream out, NamedDB info, Object key) throws Exception {
try {
rlock(info);
} catch (Exception e) {
throw new Exception(e);
}
try {
out.print(" " + key + ": ");
out.print(info.exists(key));
} catch (Exception e) {
runlock(info);
throw new Exception(e);
}
runlock(info);
}
/**
After Change
* @param key
*/
private void tfpnt(PrintStream out, NamedDB info, String key) {
rlock(info);
try {
out.print(" " + key + ": ");
out.print(info.exists(key));